Insert(substring, string, position)


Inserts a substring in a string after a specified character position. Prepends the substring if position is equal to 0.

See also RemoveChars and Len.

substring

String to be inserted.

string

String to be inserted into.

position

Integer that indicates the character position in string where the substring will be inserted.